home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / oddech / space / spacecraft.exe / scripts / DefineButton2_222 / BUTTONCONDACTION on(press).as
Text File  |  2002-10-22  |  426b  |  20 lines

  1. on(press){
  2.    tellTarget("../shotsound")
  3.    {
  4.       gotoAndStop(2);
  5.    }
  6.    tellTarget("..")
  7.    {
  8.       n += "1";
  9.       shotnum = "shot" add n;
  10.       duplicateMovieClip("/shot",shotnum,"16384" + (n + "100"));
  11.       setProperty(shotnum, _X, getProperty("/schiff", _X));
  12.       setProperty(shotnum, _Y, getProperty("/schiff", _Y) - "20");
  13.    }
  14.    tellTarget("../amount")
  15.    {
  16.       n += "1";
  17.    }
  18.    play();
  19. }
  20.